home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 106 / RG2001 / RG2001.ISO / demos / Sam / Serious Sam Demo / Scripts / Dedicated_startup.ini next >
Encoding:
Text File  |  2000-12-31  |  1.5 KB  |  39 lines

  1. // startup script for dedicated server
  2.  
  3. // make all textures and shadows as low quality as possible - this effectively makes it take almost no memory
  4. tex_iNormalQuality=11;
  5. tex_iAnimationQuality=11;
  6. tex_fNormalSize=1;
  7. tex_fAnimationSize=1;
  8. tex_fEffectSize=1;
  9. tex_fForceLowQuality=1;
  10. tex_fForceHighQuality=0;
  11. tex_bFineEffect=0;
  12. shd_fStaticSize=1;
  13. shd_fDynamicSize=1;
  14. shd_bFineQuality=0;
  15. shd_bCacheAll=0;
  16.  
  17. // here we put extra settings for GameSpy that users will be able to see in their browsers
  18. // it is best that you fill-in this info, so users can see what they are connecting to
  19. // example would be:
  20. // gam_strGameSpyExtras = "\\dedicatedserver\\yes\\system\\PIII@500/512MB/Win2k\\connection\\T1\\admin\\sam@hotmail.com";
  21. // just take care to format those backslashes right and always add the settings in pairs key-value
  22.  
  23. gam_strGameSpyExtras = "\\dedicatedserver\\yes\\connection\\<not_configured>\\admin\\<not_configured>";
  24.  
  25.  
  26. // if you are running on a multihomed computer, you'll have to 
  27. // setup the ip on which you want the server to be visible here,
  28. // in this syntax:
  29. // net_strLocalHost = "server.ip.goes.here";
  30.  
  31. // also, you might want to manually setup your location description,
  32. // so that people know how far your server is from them
  33. // if you don't set it up, it will automatically read your country code 
  34. // from locale settings in Windows, but you might want to put exact
  35. // country and city where you are
  36. // here is an example:
  37. // net_strLocationCode="Zagreb, Croatia";
  38.  
  39.